home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / bitmas1g / formmess.frm (.txt) < prev    next >
Visual Basic Form  |  1999-09-03  |  896b  |  31 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMessage 
  3.    AutoRedraw      =   -1  'True
  4.    BorderStyle     =   1  'Fixed Single
  5.    ClientHeight    =   3195
  6.    ClientLeft      =   15
  7.    ClientTop       =   15
  8.    ClientWidth     =   6750
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form3"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   3195
  14.    ScaleWidth      =   6750
  15.    StartUpPosition =   1  'CenterOwner
  16. Attribute VB_Name = "frmMessage"
  17. Attribute VB_GlobalNameSpace = False
  18. Attribute VB_Creatable = False
  19. Attribute VB_PredeclaredId = True
  20. Attribute VB_Exposed = False
  21. Option Explicit
  22. Private Sub Form_Click()
  23. ' fmainform is defined in the module
  24.     fMainForm.WindowState = 0
  25.     Unload Me
  26. End Sub
  27. Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
  28.     fMainForm.WindowState = 0
  29.     Unload Me
  30. End Sub
  31.